Credit transfer Status Update
The UpdateTransactionStatus API enables to update the status of inbound transactions (CCT_IN).
Method: POST
{{URL}}/rtp/rpc/TransactionService/UpdateTransactionStatus
Headers
Name | Value |
---|---|
Content-Type | application/json |
Credential | "Basic c3VwcG9ydCsxQG5ldHN5cy1pbmMuY29tOjM5ZDYxOGJkNTVmN5NWQxY2RlNDE5" |
Signature | "{{signature}}" |
Example
Payload Parameters
Parameter | Description |
---|---|
processor Mandatory | String Payment channel through which the transaction happens Example – "FEDNOW" or "TCH" |
referenceNumber Mandatory | String Unique reference number of the inbound transaction Example – "2023081892413659999Vfy9n1NLx9kEewF" |
status Mandatory (Applicable only for TCH) | String Current status of the transaction Example – "ACCC" |
- cURL
- C#
- Go
- NodeJs
curl --location '{{URL}}/rtp/rpc/TransactionService/UpdateTransactionStatus' \
--header 'Content-Type: application/json' \
--data '{"processor":"FEDNOW","referenceNumber":"2023081892413659999Vfy9n1NLx9kEewF","status":"ACCC"}'
var options = new RestClientOptions("{{URL}}")
{
MaxTimeout = -1,
};
var client = new RestClient(options);
var request = new RestRequest("/rtp/rpc/TransactionService/UpdateTransactionStatus", Method.Post);
request.AddHeader("Content-Type", "application/json");
var body = @"{
" + "\n" +
@" ""processor"": ""FEDNOW"",
" + "\n" +
@" ""referenceNumber"": ""2023081892413659999Vfy9n1NLx9kEewF"",
" + "\n" +
@" ""status"": ""ACCC""
" + "\n" +
@"}";
request.AddStringBody(body, DataFormat.Json);
RestResponse response = await client.ExecuteAsync(request);
Console.WriteLine(response.Content);
package main
import (
"fmt"
"strings"
"net/http"
"io/ioutil"
)
func main() {
url := "{{URL}}/rtp/rpc/TransactionService/UpdateTransactionStatus"
method := "POST"
payload := strings.NewReader(`{`+"
"+`
"processor": "FEDNOW",`+"
"+`
"referenceNumber": "2023081892413659999Vfy9n1NLx9kEewF",`+"
"+`
"status": "ACCC"`+"
"+`
}`)
client := &http.Client {
}
req, err := http.NewRequest(method, url, payload)
if err != nil {
fmt.Println(err)
return
}
req.Header.Add("Content-Type", "application/json")
res, err := client.Do(req)
if err != nil {
fmt.Println(err)
return
}
defer res.Body.Close()
body, err := ioutil.ReadAll(res.Body)
if err != nil {
fmt.Println(err)
return
}
fmt.Println(string(body))
}
var https = require('follow-redirects').https;
var fs = require('fs');
var options = {
'method': 'POST',
'hostname': '{{URL}}',
'path': '/rtp/rpc/TransactionService/UpdateTransactionStatus',
'headers': {
'Content-Type': 'application/json'
},
'maxRedirects': 20
};
var req = https.request(options, function (res) {
var chunks = [];
res.on("data", function (chunk) {
chunks.push(chunk);
});
res.on("end", function (chunk) {
var body = Buffer.concat(chunks);
console.log(body.toString());
});
res.on("error", function (error) {
console.error(error);
});
});
var postData = JSON.stringify({
"processor": "FEDNOW",
"referenceNumber": "2023081892413659999Vfy9n1NLx9kEewF",
"status": "ACCC"
});
req.write(postData);
req.end();
Request Body (Applicable for both FedNow and TCH)
{
"processor": "FEDNOW",
"referenceNumber": "2023081892413659999Vfy9n1NLx9kEewF",
"status": "ACCC" //applicable only for FedNow
}
Response: 200
Response Parameters
Parameter | Description |
---|---|
message | String Outcome response message of the request Example – "Transaction status updated successfully" |
rawMessage (Applicable only for TCH) | String Raw response message related to the transaction encoded in Base64 Example – "Base64 Value of Received Response" |
referenceNumber | String Unique reference number of the specific transaction for which the status is updated Example – "2023081892413659999Vfy9n1NLx9kEewF" |
response (Applicable only for TCH) | String Response received for the given request Example – "JSON Representation of Received Response" |
status (Applicable only for TCH) | String Updated status of the transaction Example – "RCVD" |
windowId (applicable only for TCH) | String Unique ID used for reconciliation of transactions Example – "001" |
Response Body (Applicable for both FedNow and TCH)
{
"message": "Transaction status updated successfully",
"rawMessage": "Base64 Value of Received Response", //applicable only for TCH
"referenceNumber": "2023081892413659999Vfy9n1NLx9kEewF",
"response": "JSON Representation of Received Response", //applicable only for TCH
"status": "RCVD", //applicable only for TCH
"windowId": "001" //applicable only for TCH
}